home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Skunkware 5
/
Skunkware 5.iso
/
src
/
X11
/
xarchie-2.0.9
/
selection.h
< prev
next >
Wrap
C/C++ Source or Header
|
1995-06-18
|
697b
|
27 lines
/*
* selection.h : Defs for manipulating items selected in the browser
*
* George Ferguson, ferguson@cs.rochester.edu, 23 Apr 1993.
*/
#ifndef SELECTION_H
#define SELECTION_H
#include "db.h"
typedef struct SelectedItem_s {
DbEntry *entry;
int list_index;
struct SelectedItem_s *next,*prev;
} SelectedItem;
extern void resetSelections();
extern void redrawSelectionsForPane(),resetSelectionsForPane();
extern void addSelection(),addSelectionInPane(),removeSelection();
extern SelectedItem *getSelection();
extern Boolean isSelected(),isSelectedInPane();
extern Boolean hasSelection(),hasSelectionInPane();
extern void forEachSelectedItemAtDepth(),forEachSelectedItem();
#endif